home *** CD-ROM | disk | FTP | other *** search
/ Chip 2006 June (Extra) / CHIP 2006-06.3.iso / program / opensource / clamav-devel.exe / contrib / Windows / options.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-05-16  |  1.5 KB  |  54 lines

  1. // options.h : header file
  2. //
  3.  
  4. /*
  5.  *  Copyright (C) 2004 Nigel Horne <njh@bandsman.co.uk>
  6.  *
  7.  *  This program is free software; you can redistribute it and/or modify
  8.  *  it under the terms of the GNU General Public License as published by
  9.  *  the Free Software Foundation; either version 2 of the License, or
  10.  *  (at your option) any later version.
  11.  *
  12.  *  This program is distributed in the hope that it will be useful,
  13.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.  *  GNU General Public License for more details.
  16.  *
  17.  *  You should have received a copy of the GNU General Public License
  18.  *  along with this program; if not, write to the Free Software
  19.  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  20.  *  MA 02110-1301, USA.
  21.  */
  22. /////////////////////////////////////////////////////////////////////////////
  23. // COptions dialog
  24.  
  25. class COptions : public CDialog
  26. {
  27. // Construction
  28. public:
  29.     COptions(CWnd* pParent = NULL);   // standard constructor
  30.  
  31. // Dialog Data
  32.     //{{AFX_DATA(COptions)
  33.     enum { IDD = IDD_OPTIONS };
  34.     BOOL    m_recursive;
  35.     CString    m_quarantineDir;
  36.     //}}AFX_DATA
  37.  
  38.  
  39. // Overrides
  40.     // ClassWizard generated virtual function overrides
  41.     //{{AFX_VIRTUAL(COptions)
  42.     protected:
  43.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  44.     //}}AFX_VIRTUAL
  45.  
  46. // Implementation
  47. protected:
  48.  
  49.     // Generated message map functions
  50.     //{{AFX_MSG(COptions)
  51.     //}}AFX_MSG
  52.     DECLARE_MESSAGE_MAP()
  53. };
  54.